home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 September (Japanese) / CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso / disc2 / nt / source.exe / POSIX / BSDPSX / LSTAT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-28  |  173 b   |  12 lines

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. /*
  4.  * Lstat: Posix Implementation DF_AJ
  5.  */
  6.  
  7.  
  8. int lstat (char *path, struct stat *buf)
  9. {
  10.     return stat (path, buf);
  11. }
  12.